From: Richard M. Stallman Date: Sat, 28 Apr 2007 17:24:22 +0000 (+0000) Subject: (read_escape): In a string, \s is always space. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~421^2~18986 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=0c29a47815fcce2b4894f8ab2a8db68e960c9bf1;p=emacs.git (read_escape): In a string, \s is always space. --- diff --git a/src/lread.c b/src/lread.c index 1f1ddddde4f..088f729075d 100644 --- a/src/lread.c +++ b/src/lread.c @@ -1894,7 +1894,7 @@ read_escape (readcharfun, stringp, byterep) case 's': c = READCHAR; - if (c != '-') + if (stringp || c != '-') { UNREAD (c); return ' ';